Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://api.tagdeliver.com/v1/tag \
--header 'Authorization: Bearer <token>'{
"results": [
{
"uid": 18620,
"organisation": 3,
"domain": "example.com",
"display_name": "",
"label": null,
"tier": 3,
"config": "{\"rss_feed\":\"\",\"contextual\":true,\"pcd\":false,\"global_css\":\".ci-ymal{color:#000;font-size:.7em!important;line-height:22px!important;pointer-events:none;text-align:center\"}",
"date_added": "2023-07-13 15:21:09",
"status": 1,
"status_app": 0,
"tag_version": "master.49855096",
"target_branch": "master",
"iabCategories": "IAB20,IAB20-3",
"approved": 1,
"logo": null,
"logo_dark": null,
"o&o": null,
"custom_kv": "a:3:{s:12:\"ci_page_path\";s:24:\"window.location.pathname\";s:10:\"ci_page_id\";s:43:\"window?.REBELMOUSE_BOOTSTRAP_DATA?.post?.id\";s:7:\"segment\";s:20:\"window?.cXsegmentIds\";}",
"organisation_name": "DEMO",
"units": "iab, adhesion, in-image",
"beta": false
}
],
"success": true
}List all publishers under the loggedin organisation, and some top level configuration
curl --request GET \
--url https://api.tagdeliver.com/v1/tag \
--header 'Authorization: Bearer <token>'{
"results": [
{
"uid": 18620,
"organisation": 3,
"domain": "example.com",
"display_name": "",
"label": null,
"tier": 3,
"config": "{\"rss_feed\":\"\",\"contextual\":true,\"pcd\":false,\"global_css\":\".ci-ymal{color:#000;font-size:.7em!important;line-height:22px!important;pointer-events:none;text-align:center\"}",
"date_added": "2023-07-13 15:21:09",
"status": 1,
"status_app": 0,
"tag_version": "master.49855096",
"target_branch": "master",
"iabCategories": "IAB20,IAB20-3",
"approved": 1,
"logo": null,
"logo_dark": null,
"o&o": null,
"custom_kv": "a:3:{s:12:\"ci_page_path\";s:24:\"window.location.pathname\";s:10:\"ci_page_id\";s:43:\"window?.REBELMOUSE_BOOTSTRAP_DATA?.post?.id\";s:7:\"segment\";s:20:\"window?.cXsegmentIds\";}",
"organisation_name": "DEMO",
"units": "iab, adhesion, in-image",
"beta": false
}
],
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?